@extends('frontend.layouts.app')
@section('title')
Law & Regulation
@stop
@section('content')
{{--
Action Plans
--}}
{{--
ACTIVITIES & ACTION PLANS
--}}
@if (\App::getLocale() == 'my')
ဥပဒေ/နည်းဥပဒေများ
@else
LAW & REGULATION
@endif
{{-- @dd(Session::get('locale')) --}}
@foreach ($categories as $category)
@if ($category->subCategory()->exists())
@foreach ($subCategories as $subCat)
@if ($subCat->category_id == $category->id)
-
{{ $subCat->name}}
@endif
@endforeach
@else
@endif
@endforeach
Name |
Category |
Preview/Download |
@foreach ($documents as $document)
{{ $document->name }} |
@foreach ($subCategories as $subCat)
@if($document->sub_category_id == $subCat->id)
{{ $subCat->name }}
@endif
@endforeach
|
|
@endforeach
{{--
Categories
@foreach ($subCategories as $subCat)
- {{ ucfirst($subCat->name) }}
@endforeach
--}}
@stop