@extends('layouts.app') @section('title', 'Section List') @section('content')
{{-- Alert Messages --}} @include('common.alert')
All BOQs
@if(count($boqs)>0) @foreach ($boqs as $boq) @endforeach @else @endif
ID Title Category Description Actions
{{ $boq->id }} {{ $boq->title }} {{ $boq->boqCategory->boq_category_name }} {!! Str::words(strip_tags($boq->description), 10, ' ...') !!}
There are no data.
{{-- $boqs->links() --}} {{ $boqs->appends(request()->query())->links() }}
@include('boq.delete-modal') @endsection @push('script') @endpush