@extends('layouts.app') @section('title') Customer Requests @stop @section('breadcrumb') @stop @section('content')

All Customer Requests

@foreach($requests as $r) @endforeach
Sr # Customer Size Floor Approx. Bugdet Description Created Date Action
{{$count++}} {{$r->customer->name}} {{$r->size}} {{$r->floor}} {{$r->approx_bugdet}} {{$r->description}} {{date('d-m-Y', strtotime($r->created_at)) }}
@stop @section('js') @stop