| 1234567891011121314151617181920212223242526 |
- @inject('systemPresenter', 'App\Presenters\SystemPresenter')
- @extends('layouts.app')
- @section('title', $systemPresenter->checkReturnValue('title', $category->name))
- @section('description', $systemPresenter->checkReturnValue('seo_desc', $category->name))
- @section('keywords', $systemPresenter->checkReturnValue('seo_keyword', $category->name))
- @section('header-text')
- <div class="text-inner">
- <div class="row">
- <div class="col-md-12">
- <h3 class="to-animate fadeInUp animated color-white">
- <i class="glyphicon glyphicon-th-list"></i>
- {{ $category->name }}
- </h3>
- </div>
- </div>
- </div>
- @endsection
- @section('content')
- @include('default.article')
- @endsection
|