@extends('master') @section('title', 'Dokumen Perumahan') @section('header-konten')
Halaman -
Dokumen Perumahan
Perumahan
Dokumen Perumahan
@include('perumahan.detail.head') @endsection @section('konten')
Dokumen Perumahan
@php $tambah = explode(',', Auth::user()->role->tambah); @endphp @if (in_array('25', $tambah))
Tambah Dokumen
@endif
@php $i = 1; @endphp @foreach ($doks as $dok) @php $i++; @endphp @endforeach
No
Nama Dokumen
Status Dokumen
Aksi
{{ $i }}
{{ $dok->nama_dokumen_perum }}
@if ($dok->file_dokumen_perum != null)
Terupload
@else
Belum Terupload
@endif
@if ($dok->file_dokumen_perum != null)
Download
@endif @if ($dok->gambar_dokumen_perum != null)
Pratinjau Gambar
@endif @if ($dok->video_dokumen_perum != null)
Pratinjau Video
@endif @php $ubah = explode(',', Auth::user()->role->ubah); $hapus = explode(',', Auth::user()->role->hapus); @endphp @if (in_array('25', $ubah))
Edit
@endif @if (in_array('25', $hapus))
Hapus
@endif
@endsection @section('modal') @php $tambah = explode(',', Auth::user()->role->tambah); $ubah = explode(',', Auth::user()->role->ubah); $hapus = explode(',', Auth::user()->role->hapus); @endphp @if (in_array('25', $tambah))
Form Tambah Dokumen
@csrf
Nama Dokumen
File Dokumen
(.pdf, .xlsx, .docx)
File Gambar
(.jpg, .jpeg, .png)
File Video
(.mp4, .mov, .webm)
@endif @if (in_array('25', $ubah))
Form Update Dokumen
@csrf
Nama Dokumen
File Dokumen
(.pdf, .xlsx, .docx)
File Gambar
(.jpg, .jpeg, .png)
File Video
(.mp4, .mov, .webm)
@endif @if (in_array('25', $hapus))
Hapus Dokumen
Apakah anda yakin untuk menghapus Dokumen
?
@endif
@endsection @section('script') @include('my_components.alertToast') @endsection