@extends('admin.layouts.app')
@section('content')
@forelse ($schools as $school)
Name
Phone No.
Email Id.
Conference Title
Conference Date
Transaction Cost
Created At
Action
{{-- Status
Action --}}
@empty
{{ $school->first_name . ' ' . $school->last_name }}
{{ $school->mobile_number ?? '' }}
{{ $school->email ?? '' }}
{{ $school->conferenceDetail?->conference_title ?? '' }}
{{ date('d-m-Y', strtotime($school->conferenceDetail?->conference_date)) }}
{{number_format( $school->conferenceLodging?->lodging + $school->conferenceMeal?->meal + $school->conferenceMilage?->milage + $school->conferenceMiscellaneous?->miscellaneous + $school->conferenceParking?->parking + $school->conferenceToll?->tolls, 2) }}
{{ date('d-m-Y', strtotime($school->conferenceDetail?->created_at)) }}
{{--
@switch($school->status)
@case(1)
Active
@break
@case(0)
Inactive
@break
@default
Deleted
@endswitch
--}}
@endforelse
No Data Yet