@extends('layouts.admin.master') @section('title') {{ __('Colleges') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{ __('Colleges') }}

@endslot @endcomponent
@foreach ($colleges as $college) @endforeach
{{ __('Name') }} {{ __('Image') }} {{ __('Language') }} {{ __('Status') }} {{ __('Action') }}
{{ $college->name }} {{ $college->language->name }} {{ $college->status == 'active' ? 'Activated' : 'Not Activated' }}
@push('scripts') @include('dashbord.include.custom-datatable') @endpush @endsection