category_article.blade.php 789 B

1234567891011121314151617181920212223242526
  1. @inject('systemPresenter', 'App\Presenters\SystemPresenter')
  2. @extends('layouts.app')
  3. @section('title', $systemPresenter->checkReturnValue('title', $category->name))
  4. @section('description', $systemPresenter->checkReturnValue('seo_desc', $category->name))
  5. @section('keywords', $systemPresenter->checkReturnValue('seo_keyword', $category->name))
  6. @section('header-text')
  7. <div class="text-inner">
  8. <div class="row">
  9. <div class="col-md-12">
  10. <h3 class="to-animate fadeInUp animated color-white">
  11. <i class="glyphicon glyphicon-th-list"></i>
  12. &nbsp;{{ $category->name }}
  13. </h3>
  14. </div>
  15. </div>
  16. </div>
  17. @endsection
  18. @section('content')
  19. @include('default.article')
  20. @endsection