@extends('layouts.home_layout') @php $pageTitle = "Partner List"; @endphp @section('title', $pageTitle = "Partner List") @section('style') @endsection @section('content')
@include('common.alert_msg')

Partners

@foreach ($list as $key => $item) @endforeach
# Partner Name (English) Partner Name (Bangla) Partner Code Mobile Number Partner E-mail Partner Address Status Action
{{($key + 1)}} {{$item->partner_name_en}} {{$item->partner_name_bn}} {{$item->partner_code}} {{$item->phone_no}} {{$item->email_id}} {{$item->address}} {{$item->status_text}}
@if (is_permit('pt_e')) @endif @if (is_permit('pt_d'))
id) }}" class="mb-0 delete_form" > @method('DELETE') @csrf
@endif
@php // $list->count() // $list->currentPage() // $list->firstItem() // $list->hasMorePages() // $list->lastItem() // $list->lastPage() (Not available when using simplePaginate) // $list->nextPageUrl() // $list->perPage() // $list->previousPageUrl() // $list->total() (Not available when using simplePaginate) // $list->url($page) @endphp
Displaying {{$list->firstItem()}} to {{$list->lastItem()}} total {{$list->count()}} of {{$list->total()}} items {{ $list->render() }}
{{-- Modal Start id="modal" --}} {{-- Modal End --}}
@endsection @section('script') @endsection