@extends('admin.layout') @section('content')
{{ __('vehicle.Vehicles') }}
@forelse ($data as $vehicle)
{{ Form::open(['method' => 'DELETE', 'style' => 'margin-top: -12%;', 'action' => ['Admin\vehiclesController@destroy', $vehicle->id]]) }} {{ Form::hidden('id', $vehicle->id) }} {{ Form::close() }}
Card image cap
{{ $vehicle->title_ara }}
@empty
{{ __('vehicle.No_Vehicles') }}
@endforelse
{{ $data->links() }}
@endsection