@extends('layouts.master') @section('title', 'Suppliers') @section('page-header') Suppliers @stop @push('style') @endpush @section('content')
@include('partials._alert_message')

@yield('page-header')

@foreach($suppliers as $item) @endforeach
Sl Name Mobile Email Opening Banalce Actions
{{ $loop->iteration }} {{ $item->name }} {{ $item->mobile }} {{ $item->email }} {{ number_format($item->opening_balance, 2) }}
@include('partials._user-log', ['data' => $item]) @if ((hasPermission("account-suppliers.edit", $slugs))) @endif @if ((hasPermission("account-suppliers.delete", $slugs))) @endif
@csrf @method("DELETE")
@endsection @section('js') @endsection