home.blade.php 298 B

123456789101112131415161718
  1. @component('home.layouts.component', ['title' => 'صفحه اصلی'])
  2. @slot('style')
  3. @endslot
  4. @slot('content_top')
  5. @endslot
  6. @slot('content')
  7. <h1 style="height: 600px">
  8. home pageeeeeee
  9. </h1>
  10. @endslot
  11. @slot('script')
  12. @endslot
  13. @endcomponent