@extends('layouts.master') @section('pages') {{ __('dashboard.home') }} @endsection @section('title') {{ __('dashboard.unit_semester') }} @endsection @section('btn') {{ __('dashboard.close') }} @endsection @section('css') @endsection @section('content')
@foreach ($units as $unit)
{{ $unit->name }}

{{ $unit->info ?? 'No information available' }}

@endforeach
@endsection @section('js') @endsection