PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
admin
/
pages
/
invoices
/
Editing: show.blade.php
@extends("admin.layouts.app") @section("content") <x-card-content> <x-card-header :title="$invoice->invoice_number" :back-route="route('admin.invoices.index')"/> <x-card-body> <table class="table table-bordered table-striped"> <tr> <td>{{__("User Name")}}</td> <td>{{$invoice->user->name}}</td> </tr> <tr> <td>{{__("User Phone")}}</td> <td>{{$invoice->user->phone}}</td> </tr> <tr> <td>{{__("User Email")}}</td> <td>{{$invoice->user->email}}</td> </tr> <tr> <td>{{__("Price")}}</td> <td>{{number_format($invoice->price, 2)}}</td> </tr> <tr> <td>{{__("Plan")}}</td> <td>{{$invoice->userPlan->title}}</td> </tr> </table> </x-card-body> </x-card-content> @endsection
SAVE
CANCEL