@extends('layouts.admin') {{ config('app.name', 'Laravel') }} | Admin | Students @section('main-content')
@if(Session::has('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Transport Fee

Students List
@if(count($users) != 0) @foreach($users as $key => $user) @endforeach @else @endif
# Student Name Parent Name Class Name Parent Email Parent Phone No. Actions
{{ $key+1 }} {{ucwords($user->first_name)." ".ucwords($user->last_name)}} {{ucwords($user->parent->first_name)." ".ucwords($user->parent->last_name)}} {{$child_class_arr[$user->uuid]}} @if ($user->parent_id !== null) {{ $user->parent->phone }} @else {{ $user->phone }} @endif uuid}}" target="_blank">View
{{ 'No record found' }}
@endsection