@extends('layouts.admin.admin') @section('title', 'Create a Institution') @section('content')
Notification
@isset($show)
@csrf
@foreach ($graduates as $key => $graduate) @endforeach
{{-- Select All
--}}
Name Email Mobile Invoice Number Created Date
{{$graduate->full_name}} ({{$graduate->student_id}}) {{$graduate->email}} {{$graduate->mobile}} @if ($graduate->order) {{ $graduate->order->invoice_number }} @else --- @endif {{ toDMYHi($graduate->created_at) }}
@foreach (config('custom.message_via') as $via)

{{ $via }}

@endforeach
@error('subject') {{ $errors->first('subject') }} @enderror
@error('message') {{ $errors->first('message') }} @enderror
@error('sms_message') {{ $errors->first('sms_message') }} @enderror
@endisset
@endsection @section('scripts') @endsection