@extends('Dashboard.layouts.master') @section('title','Welcome Screens | List') @section('css') @endsection @section('content')
@if(count($tips) == 0) @endif @foreach ($tips as $key => $tip) @endforeach
{{__('forms.title')}} {{__('forms.image')}} {{__('forms.order')}} {{__('forms.status')}} {{__('forms.created_at')}} {{__('forms.actions')}}
No data Found
{{ $tip->title }} @if(!is_null($tip->image)) @else No image @endif {{ $tip->order }}
{{ $tip->status == 1 ? __('forms.enabled') : __('forms.disabled') }}
{{ Helper::change_timezone($tip->created_at) }}
Action
pages
@endsection @section('scripts') @endsection