@extends('layouts.admin') @section('content') @include('include.datatable-css')
{{-- Filters HTML --}}
@if (isVendor()) @include('include.create-button', ['url' => route('add-delivery-instruction')]) @endif @include('include.refresh-button')
{{-- Filters HTML End --}} @include('include.flash-message')
@foreach ($instructions as $instruction) @endforeach
Photo Title Rank Status Created By Created On Action
@if ($instruction->image != NULL) photo @else photo @endif {{ Str::limit($instruction->title, 50, ' ...') }} {{ $instruction->rank }} @if ($instruction->active == '1') Active @else Active @endif {{ $instruction->creator->accountId }} {{ $instruction->created_at }}
@if (is_countable($instructions)) @foreach ($instructions as $instruction) @endforeach @endif @include('include.datatable') @include('include.filters-common-js-part') @include('include.datatable-date-range-selector-js', ['url' => 'delivery-instruction']) {{-- Page specific JS --}} @endsection