@extends('layouts.dashboard') @section('add-css') @endsection @section('title') Reportes @endsection @section('content') @php if(session()->has('error')){ $error = Session::get( 'error' ); }else{ $error = null; } if(session()->has('success')){ $message = Session::get( 'success' ); }else{ $message = null; } @endphp @endsection @section('links') @endsection @section('add-js') @endsection