@push('third_party_stylesheets') @include('layouts.datatables_css') @endpush @foreach($getDiscoverCards as $item) @endforeach
Id Title Image Url City Position Action
{{ $item->id }} {{ $item->title }} {{ $item->url }} @php $getCityVal = \App\Models\City::where('id',$item->city_id)->first(); @endphp {{ $getCityVal->title }} {{ $item->position }} {!! Form::open(['route' => ['discover-cards-destroy', $item->id], 'method' => 'delete']) !!}
{!! Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure you want to delete card permanently?')" ]) !!}
{!! Form::close() !!}
@push('third_party_scripts') @include('layouts.datatables_js') @endpush
  • {{ $getDiscoverCards->links() }}