25 lines
467 B
PHP
25 lines
467 B
PHP
@extends('tablar::master')
|
|
|
|
@inject('layoutHelper', 'TakiElias\Tablar\Helpers\LayoutHelper')
|
|
|
|
@section('tablar_css')
|
|
@stack('css')
|
|
@yield('css')
|
|
@stop
|
|
|
|
@section('classes_body', $layoutHelper->makeBodyClasses())
|
|
|
|
@section('layout')
|
|
@if(isset($layout))
|
|
@includeIf('tablar::layouts.' . $layout)
|
|
@else
|
|
@includeIf('tablar::layouts.'. config('tablar.layout'))
|
|
@endif
|
|
@show
|
|
|
|
@section('tablar_js')
|
|
@stack('js')
|
|
@yield('js')
|
|
@show
|
|
|