@push('third_party_stylesheets')
@include('layouts.datatables_css')
@endpush
Id |
Title |
Image |
Url |
City |
Position |
Action |
@foreach($getDiscoverCards as $item)
{{ $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() !!}
|
@endforeach
@push('third_party_scripts')
@include('layouts.datatables_js')
@endpush