@extends('admin.layouts.master') @section('title', 'View Appointment - Admin') @section('body')

{{ __('adminstaticword.Appointment') }}

  • @if($appoint->user->user_img != null || $appoint->user->user_img !='') @else User Image @endif
  • {{ __('adminstaticword.User') }}: {{ $appoint->user->fname }} {{ $appoint->user->lname }}
  • {{ __('adminstaticword.Course') }}: {{ $appoint->courses->title }}
  • {{ __('adminstaticword.Title') }}: {{ $appoint->title }}
  • {{ __('adminstaticword.Detail') }}: {!! $appoint->detail !!}
{{ csrf_field() }} {{ method_field('PUT') }}

  • accept == 1 ? 'checked' : '' }} >


  • @endsection @section('script') @endsection