@extends('layouts.app')
@section('content')
@push('scripts')
{{-- tooltips --}}
<script type="text/javascript" src="{{ url('material') }}/js/pages/ui/tooltips-popovers.js"></script>
@endpush
@php
$canEdit = \Helper::hakAkses('pesan&followup', 'edit');
@endphp
<div class="container-fluid">
<div class="block-header">
<h2>Pesan Konsultasi</h2>
</div>
<div class="row clearfix">
<!-- Task Info -->
<div class="col-xs-12 col-sm-12 col-md-12">
<div class="card">
<div class="header">
<a href="{{ route('pesan_konsultasi.create') }}" class="btn btn-primary">Tambah Pesan</a>
{{-- <a onclick="return alert('Perhatian! Pesan Custom hanya dapat ditambahkan 5 kali!')"
class="btn btn-primary">Tambah Pesan</a> --}}
</div>
<div class="body">
<div class="table-responsive">
<table class="table table-hover dashboard-task-infos">
<thead>
<tr>
<th>Icon Pesan</th>
<th>Nama Pesan</th>
<th>Isi Pesan</th>
<th>Nota</th>
<th>Tools</th>
</tr>
</thead>
<tbody>
@foreach ($datas as $data)
<tr>
<th><i class="material-icons">{{ $data->icon_pesan }}</i></th>
<th>{{ $data->nama_pesan }}</th>
<th style="max-width: 400px;">{{ $data->isi_pesan }}</th>
<th>
@if($data->tampilkan == 0)
<a href="{{ route('tampilkanPesanKonsultasi', $data->id) }}"
class="btn btn-warning" data-toggle="tooltip" data-placement="top"
title="Tampilkan"><i class="material-icons">remove_red_eye</i></a>
@endif
@if($data->tampilkan == 1)
<a href="{{ route('tampilkanPesanKonsultasi', $data->id) }}"
class="btn btn-danger" data-toggle="tooltip" data-placement="top"
title="Sembunyikan"><i class="material-icons">remove_red_eye</i></a>
@endif
@if ($canEdit)
<a href="{{ route('pesan_konsultasi.edit', $data->id) }}"
class="btn btn-primary"><i class="material-icons">edit</i></a>
<form action="{{ route('pesan_konsultasi.destroy', $data->id) }}" method="POST"
style="display:inline">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger" id="hapus-button"><i
class="material-icons">delete</i></button>
</form>
@endif
</th>
</tr>
@endforeach
<tr></tr>
</tbody>
<tfoot>
@include('layouts.includes.pagination')
</tfoot>
</table>
</div>
</div>
</div>
</div>
<!-- #END# Task Info -->
</div>
</div>
@endsection
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]