@section('Dashboard')

media {!! __('Products') !!}

{!! __('Welcome to the Products Management Dashboard! Here, you can easily Create new Products to tailor the system to your needs. Simply navigate to the Create Products 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($Products as $Product) @endforeach
@include('layouts.footer')
@endsection