@extends('layouts.app') @section('content')

Add New Client

@if (Auth::check())
First Name

Last Name

View All Clients

First Name
Last Name
View Details
Create Invoice
@foreach($client as $row)
{{$row->first_name}}
{{$row->last_name}}
@endforeach
@else User is not authenticated @endif
@endsection