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

{{$title}}

@if(Auth::user()->canDo(['create_quotations'])) Create a Quote @endif
@foreach($quotes as $quote) @endforeach
Quote No. Date Customer By Action
{{$quote->id}} {{$quote->created_at}} {{ empty($quote->customer_id) ? "":$quote->customer->name}} {{$quote->user->name}} Details
@endsection