@extends('template.master') @section('content')

Phone List

@include('partials.message')
@foreach ($phonenumber as $service) @endforeach
SL Category Name Position Phone Serial Status Action
{{ $loop->index + 1 }} {{ App\Models\PhoneCategory:: where('id',$service->category_id)->value('category_name')}} {{ $service->name ?? ''}} {{ $service->position ?? ''}} {{ $service->phone ?? ''}} {{ $service->serial ?? ''}} {{ $service->status == '01' ? 'Active' : 'inActive' }}
@endsection