@extends('admin.layout.base') @section('title', 'Fare Model ') @section('styles') @endsection @section('content')

Fare Management

Add Fare Model
@foreach($faremodels as $index => $faremodel) @endforeach
ID Service Image Service Type Status Action
{{ $index + 1 }} {{ $faremodel->servicename }} @if($faremodel->status ==1) @if(auth()->user()->admin_type == 1) Active @else Active @endif @else @if(auth()->user()->admin_type == 1) Inactive @else Inactive @endif @endif
{{ csrf_field() }} {{ method_field('DELETE') }} @if(auth()->user()->admin_type == 1) @lang('admin.member.edit') @else @lang('admin.member.edit') @endif @if(auth()->user()->admin_type == 0) @endif
ID Service Image Service Type Status Action
@endsection