@extends('layouts.dashboard.dashboard')
@push('css')
@endpush
@push('js')
@endpush
@section('content')
@component('card-component',['title'=>ucfirst('clients')])
@component('components.data-table',['tableID'=>"tableclient"])
@slot('thead')
| @lang('main.id') |
@lang('main.image') |
@lang('main.edit') |
@lang('main.delete') |
@endslot
@slot('tbody')
@foreach ($clients as $client)
| {{$client->id}} |
 |
@lang('main.edit') |
|
@endforeach
@endslot
@endcomponent
@endcomponent
@stop