@extends('layouts/contentLayoutMaster') @section('title', 'Application Students') @section('vendor-style') {{-- vendor css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@csrf
@if($users->count() > 0) @foreach($users as $user)
Profile Picture

{{$user->name}}

{{$user->father_name}}
{{$user->email}}
{{$user->phone}}
@php if ($user->status === 1){ $status = 'Active'; $class = 'primary'; } else{ $status = 'Inactive'; $class = 'danger'; } @endphp {{$status}}
Roll No. #{{$user->id}}

View
@endforeach {!! $users->withQueryString()->links('pagination::bootstrap-5') !!} @else
No Record Found
@endif
@endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @livewireScripts @endsection