@section('Dashboard')

note {!! __('Orders') !!}

{!! __('Welcome to the Orders Management Dashboard! Here, you can easily Create new Orders to tailor the system to your needs. Simply navigate to the Create Orders section to get Started.') !!}


@if($message = Session::get('Update'))
{{ $message }}
@endif @if($message = Session::get('store'))
{{ $message }}
@endif @if ($message = Session::get('delete'))
{{ $message }}
@endif
@foreach($Orders as $Order) @endforeach
@include('layouts.footer')
@endsection