@extends('expert.master') @section('title', 'Unit Usaha - ' . $settingsinfo->company_name . ' - ' . $settingsinfo->soft_name) @section('content') {{-- SIDEBAR --}} @include('expert.sidebar') {{-- TOPBAR --}} @include('expert.topbar') @if ($user_role_per->admin == 1)
{{-- Header Modul --}}
Manajemen Unit Usaha
{{-- Card untuk tabel --}}
Daftar Unit Usaha
Tambah Unit Usaha
@if (session('success'))
{{ session('success') }}
@endif
@foreach ($units as $item) @endforeach
No. Nama Unit Kode Unit Aksi
{{ $loop->iteration }} {{ $item->nama_unit }} {{ $item->kode_unit }} Edit
@csrf @method('DELETE')
{{-- End card --}}
@endif @endsection