31 lines
574 B
PHP
31 lines
574 B
PHP
@extends('adminlte::page')
|
|
|
|
@section('title')
|
|
@yield('title', 'Sistema')
|
|
@endsection
|
|
|
|
@section('content_header')
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<h1 class="m-0">
|
|
@yield('content_header')
|
|
</h1>
|
|
|
|
<div>
|
|
@yield('content_header_actions')
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('content')
|
|
@yield('contenido')
|
|
@endsection
|
|
|
|
@section('css')
|
|
<link rel="stylesheet" href="{{ asset('css/estilos.css') }}">
|
|
|
|
@stack('css')
|
|
@endsection
|
|
|
|
@section('js')
|
|
@stack('js')
|
|
@endsection |