@extends('layouts.app') @section('title', 'Knowledge Base') @section('breadcrumbs') @endsection @section('content')

Knowledge Base

Search articles and guides for import/export procedures

@foreach(['Customs Clearance', 'Documentation', 'Freight', 'GST', 'RBI Compliance', 'DGFT'] as $tag) {{ $tag }} @endforeach
@forelse($articles ?? [] as $article)
{{ $article->category ?? 'General' }}
{{ $article->title ?? 'Untitled' }}

{{ Str::limit($article->excerpt ?? '', 100) }}

{{ $article->read_time ?? '5 min read' }}Read more
@empty @foreach(['Customs Clearance Procedures' => 'Step-by-step guide for customs clearance in India', 'Required Export Documents' => 'Complete list of documents for various export categories', 'GST on Import/Export' => 'Understanding IGST, CGST implications on trade', 'Freight Booking Guide' => 'How to book ocean, air, and road freight efficiently', 'DGFT Schemes & Licenses' => 'Overview of EPCG, Advance Authorization, and more', 'HS Code Classification' => 'How to correctly classify goods with HS codes'] as $title => $excerpt)
Article
{{ $title }}

{{ $excerpt }}

5 min readRead more
@endforeach @endforelse
@endsection