@extends('layouts.app') @section('title', 'Ecommerce Order') @section('custom-css') @endsection @section('content')

{{ __('pages.Ecommerce customer prescription list') }}

{{ __('pages.Back to list') }}
@forelse($pres as $prescription)

#{{$loop->iteration}}

{{ __('pages.Name') }}: {{ $prescription->name }}.

{{ __('pages.Phone') }}: {{ $prescription->phone }}.

{{ __('pages.Uploaded') }}: {{ date('F m,Y',strtotime($prescription->created_at)) }}

@empty
{{ __('pages.Prescription not available!') }}
@endforelse
@endsection @section('custom-js') @endsection