@extends('layouts.app') @section('title', 'Providers Name') @section('content')

Providers Name

Manage providers name and their information

Clear
Providers Name List
@if($providers->count() > 0)
@foreach($providers as $provider) @endforeach
Name Contact Person Email Phone Website Status Created Total Due Actions
{{ $provider->name }}
{{ $provider->contact_person }} @if($provider->contact_email) {{ $provider->contact_email }} @else - @endif @if($provider->contact_phone) {{ $provider->contact_phone }} @else - @endif @if($provider->website) Visit @else - @endif {{ ucfirst($provider->status) }} {{ $provider->created_at->format('M d, Y') }} BDT {{ number_format($provider->total_due ?? 0, 2) }}
{{ $providers->links() }}
@else
No providers name found

Start by adding your first provider name.

@endif
@if(session('success')) @endif @if(session('error')) @endif @if($errors->any()) @endif @foreach($providers as $provider) @endforeach @endsection