123456789101112131415161718192021222324252627282930 |
- @component('home.layouts.component', ['title' => 'صفحه تکی مقاله'])
- @slot('style')
- @endslot
- @slot('content_top')
- @endslot
- @slot('content')
- <h1>
- single-blog
- </h1>
- <button type="button" class="btn btn-primary">Primary</button>
- <button type="button" class="btn btn-secondary">Secondary</button>
- <button type="button" class="btn btn-info">Secondary</button>
- <button type="button" class="btn btn-warning">Secondary</button>
- <button type="button" class="btn btn-danger">Secondary</button>
- <button type="button" class="btn btn-success">Secondary</button>
- <button type="button" class="btn btn-gray">Secondary</button>
- <button type="button" class="btn btn-light">Secondary</button>
- <button type="button" class="btn btn-dark">Secondary</button>
- @endslot
- @slot('script')
- @endslot
- @endcomponent
|