@extends('inventory.layout')
@section('title', 'Clients')
@section('content')
@push('head')
@endpush
{{ __('Name')}} |
{{ __('City')}} |
{{--{{ __('Created')}} | --}}
{{ __('Action')}} |
@foreach($clients as $client)
{{ isset($client->name) ? $client->name :'' }} |
{{ isset($client->city) ? $client->city :'' }} |
{{--{{ isset($client->created_at) ? $client->created_at :'' }} | --}}
|
@endforeach
{{----}}
{{----}}
@push('script')
@endpush
@endsection