@extends('frontend.layouts.app')
@section('title')
Our Activities
@stop
@section('content')
@if (\App::getLocale() == 'my')
လှုပ်ရှားဆောင်ရွက်မှုများ
@else
ACTIVITIES
@endif
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