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

Dashboard

Branch Masters
@foreach ($branches as $branch) @php $company = App\Models\Company::where('id', $branch->company_id)->first(); $client = App\Models\User::where('id', $company->user_id)->first(); @endphp @endforeach
Client Name Company Name Branch Name Software Country Issue Date Expiry Date Action
{{ $client->name ?? '' }} {{ $company->name }} {{ $branch->name }} {{ $branch->software }} {{ $branch->country }} {{ \Carbon\Carbon::parse($branch->issue_date)->format('d/m/Y') }} {{ \Carbon\Carbon::parse($branch->expiry_date)->format('d/m/Y') }} @if ($branch->status == 0)
@csrf @method('put')
@else
@csrf @method('put')
@endif
@endsection