@extends('layout.master')
@section('title', 'Transpoting | Transporters Managment System')
@section('content')
| # |
Transporter |
Mobile |
Address |
GSTIN |
Action |
@php
$perPage = $transporters->perPage();
$currentPage = $transporters->currentPage();
$counter = ($currentPage - 1) * $perPage + 1;
@endphp
@foreach ($transporters as $transporter)
| {{ $counter++ }} |
{{ $transporter->name }} |
{{ $transporter->mobile }} |
{{ $transporter->address }} |
{{ $transporter->gst_no }} |
|
@endforeach
@endsection
@push('scripts')
@endpush