ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 Current Path : /var/www/yapwebtv.com/Modules/Page/Resources/views/ |
| Current File : /var/www/yapwebtv.com/Modules/Page/Resources/views/pages.blade.php |
@extends('common::layouts.master')
@section('pages')
active
@endsection
@section('page-aria-expanded')
aria-expanded=true
@endsection
@section('pages-list')
active
@endsection
@section('page-show')
show
@endsection
@section('content')
<div class="dashboard-ecommerce">
<div class="container-fluid dashboard-content ">
<!-- page info start-->
<form action="#" method="post">
<div class="admin-section">
<div class="row clearfix m-t-30">
<div class="col-12">
<div class="navigation-list bg-white p-20">
<div class="add-new-header clearfix m-b-20">
<div class="row">
<div class="col-6">
<div class="block-header">
<h2>{{ __('pages') }}</h2>
</div>
</div>
@if(Sentinel::getUser()->hasAccess(['pages_write']))
<div class="col-6 text-right">
<a href="{{ route('add-page') }}"
class="btn btn-primary btn-sm btn-add-new"><i
class="mdi mdi-plus"></i>
{{ __('add_page') }}
</a>
</div>
@endif
</div>
</div>
<div class="table-responsive all-pages">
<table class="table table-bordered table-striped">
<thead>
<tr role="row">
<th>#</th>
<th>{{ __('title') }}</th>
<th>{{ __('slug') }}</th>
<th>{{ __('location') }}</th>
<th>{{ __('language') }}</th>
<th>{{ __('visibility') }}</th>
<th>{{ __('date_added') }}</th>
@if(Sentinel::getUser()->hasAccess(['pages_write']) || Sentinel::getUser()->hasAccess(['pages_delete']) )
<th>{{ __('options') }}</th>
@endif
</tr>
</thead>
<tbody>
@foreach ($pages as $page)
<tr role="row" id="row_{{ $page->id }}" class="odd">
<td class="sorting_1">{{ $page->id }}</td>
<td>{{ $page->title }}</td>
<td>{{ $page->slug }}</td>
<td> {{ $page->location }} </td>
<td>{{ $page->language }}</td>
<td>
@if ( $page->visibility==1)
<i class="fas fa-eye"></i>
@else
<i class="fas fa-eye-slash "></i>
@endif
</td>
<td>{{ $page->created_at }}</td>
@if(Sentinel::getUser()->hasAccess(['pages_write']) || Sentinel::getUser()->hasAccess(['pages_delete']) )
<td>
@if(Sentinel::getUser()->hasAccess(['pages_write']))
<a class="btn btn-light active btn-xs"
href="{{ route('edit-pages',['id'=>$page->id]) }}"><i
class="fa fa-edit"></i>
{{ __('edit') }}
</a>
@endif
@if(Sentinel::getUser()->hasAccess(['pages_delete']))
<a href="javascript:void(0)"
class="btn btn-light active btn-xs"
onclick="delete_item('pages','{{ $page->id }}')"><i
class="fa fa-trash"></i>
{{ __('delete') }}
</a>
@endif
</td>
@endif
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="row">
<div class="col-12 col-sm-6">
<div class="block-header">
<h2>{{ __('Showing') }} {{ $pages->firstItem()}} {{ __('to') }} {{ $pages->lastItem()}} {{ __('of') }} {{ $pages->total()}} {{ __('entries') }}</h2>
</div>
</div>
<div class="col-12 col-sm-6 text-right">
<div class="table-info-pagination float-right">
{!! $pages->render() !!}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
<!-- page info end-->
</div>
</div>
@endsection