@extends('layouts.master') @section('css') @section('title') {{ __('home.units') }} @stop @endsection @section('content')

{{ __('home.units') }}

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@foreach($units as $key => $unit) @endforeach
# {{ __('home.unit_ar') }} {{ __('home.unit_en') }} {{ __('home.actions') }}
{{ $key + 1 }} {{ $unit->name_ar }} {{ $unit->name_en }}
@csrf @method('DELETE')
@endsection