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

{{ __('Degrees') }}

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