@extends('adminlte::page')
@section('title', 'Touch Point')
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
| ID |
File Name |
File Preview |
Status |
Actions |
@foreach($touch_points as $tp)
| {{ $tp->id }} |
{{ basename($tp->file_path) }} |
@if($tp->file_path)
@else
No File
@endif
|
@if($tp->status == 1)
Active
@else
Inactive
@endif
|
|
@endforeach
@stop
@section('js')
@stop