@extends('admin.layouts.app') @section('content')
ID | Appointment Time | Appointment Date | Status | Action | |
---|---|---|---|---|---|
{{$result->id }} | {{ucfirst($result->time)}} | @if(isset($result->appointment->appointment_date)){{ucfirst($result->appointment->appointment_date)}} | @else@endif |
|
@php $prodID = Crypt::encrypt($result->id); @endphp
{{ Form::open(['route' => ['time.destroy', $result->id], 'method' => 'delete']) }}
{{ Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-dim btn-danger']) }}
{{ Form::close() }}
|