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

{{ __('Academic Specializations') }}

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