@extends('dash.layouts.app') @section('title') Orders @endsection @section('css') @endsection @section('content') Order Details Name {{$trail->name}} Email {{$trail->email}} Phone {{$trail->phone}} Subject {{$trail->subject}} Note {{$trail->note}} Status @if($trail->status == 0) Pending @else Complete @endif @foreach($trail->trailImages as $image) Download @endforeach @endsection @section('js') @endsection