@extends('layouts.app')
@section('title', 'Section List')
@section('content')
Damages Observed & possible cause
{{-- Alert Messages --}}
@include('common.alert')
ID |
Title |
Category |
Description |
Actions |
@if(count($dopcs)>0)
@foreach ($dopcs as $dopc)
{{ $dopc->id }} |
{{ $dopc->title }} |
{{ $dopc->dopcCategory->dopc_category_name }} |
{!! Str::words(strip_tags($dopc->description), 10, ' ...') !!} |
|
@endforeach
@else
There are no data. |
@endif
{{-- $dopcs->links() --}}
{{ $dopcs->appends(request()->query())->links() }}
@include('dopc.delete-modal')
@endsection
@push('script')
@endpush