@extends('layouts.app') @section('title', __('Admins')) @section('content')

@lang('Admins')

@if(count($admins) > 0)
@foreach ($admins as $admin) @endforeach
@lang('Action') @lang('Action') @lang('Name') @lang('Code') @lang('Email') @lang('Phone Number') @lang('Address') @lang('About')
@if($admin->active == 0) @lang('Activate') @else @lang('Deactivate') @endif @lang('Edit') {{$admin->name}} {{$admin->student_code}} {{$admin->email}} {{$admin->phone_number}} {{$admin->address}} {{$admin->about}}
@else
@lang('No Related Data Found.')
@endif
@endsection