@extends('layouts.master') @section('content')
@foreach( $bills as $bill ) @endforeach
رقم الفاتوره التاريخ الشحن سعر الفاتورة الدفع اسم العميل
{{$bill->id}} {{date('d-m-Y', strtotime($bill->created_at)) }} {{$bill->transport}} {{$bill->total_bill_price}} {{$bill->payments}} {{$bill->name}}
@endsection