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