@extends('layouts.default') @section('title', $title) @section('header-links') @include('includes.headers.clients') @endsection @section('new_button') addCreate client @endsection @section('content') @foreach($list as $li) @endforeach @if(count($list) == 0) @endif
Client name Email Mobile Created By Created On Action
{{ $li->name }} {{ $li->email }} {{ $li->mobile }} {{ ucwords($li->creater?->name) }} {{ date(env('APP_DATE'), strtotime($li->created_at)) }} create
No data
@stop