Advertisement
Guest User

Untitled

a guest
Mar 12th, 2020
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. @extends('layouts.dashboard')
  2.  
  3. @section('title', 'Dashboard')
  4.  
  5.  
  6. @section('content')
  7.  
  8.     @include('dashboard.navbar')
  9.  
  10.     @include('dashboard.sidebar')
  11.  
  12.     @include('dashboard.form.input.new')
  13.  
  14. @stop
  15.  
  16. @section('scripts')
  17.    <script>
  18.        $('#sandbox-container input').datepicker({});
  19.    </script>
  20. @stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement