@extends('layouts.admin_master') @section('page-title') Admin | {{ $page_title }} @endsection @section('page-content')
@include('super_admin.partials.dealer_top_form')
List of Organisations (Dealers)
New Dealer
@include('commons.notifications')
@forelse ($organisations as $row) @empty @endforelse
Name Balance (MWK) Email Phone Status Date Created Action
{{ $row->name }} {{ number_format($row->balance) }} @if($row->email) {{ $row->email }} @else {{ 'N/A' }} @endif @if($row->phone) {{ $row->phone }} @else {{ 'N/A' }} @endif {{ ucfirst($row->status) }} {{ Carbon\Carbon::parse($row->created_at)->format('F d, Y') }} Edit
No Data
{{ $organisations->links() }}
@endsection @section('page-js') @endsection