@extends('layouts.layout') @section('content')

@lang('Front-end List')

@foreach ($frontEnds as $frontEnd) @endforeach
@lang('ID') @lang('Page Name') @lang('Status') @lang('Actions')
{{ $frontEnd->id }} {{ ucfirst($frontEnd->page) }} @if($frontEnd->status == '1') @lang('Active') @else @lang('Inactive') @endif    @can('front-end-update')    @endcan
@endsection