component.blade.php 428 B

1234567891011121314151617181920212223242526
  1. @extends('home.layouts.app')
  2. @section('title')
  3. {{ $title }}
  4. @endsection
  5. @section('style')
  6. {{ $style }}
  7. @if( isset($description) )
  8. <meta name="description" content="{!! prepareMetaDescription( $description ) !!}">
  9. @endif
  10. @endsection
  11. @section('content_top')
  12. {{ $content_top ?? '' }}
  13. @endsection
  14. @section('content')
  15. {{ $content }}
  16. @endsection
  17. @section('script')
  18. {{ $script }}
  19. @endsection