@extends('layouts.main') @section('title') {{ __('Project') }} @endsection @section('page-title')
@yield('title')
@endsection @section('content')
@if (has_permissions('create', 'project'))
{{-- Add Property Button --}}
{{ __('Add Project') }}
@endif
{{ __('Select Category') }}
@if (isset($category)) @foreach ($category as $row)
{{ $row->category }}
@endforeach @endif
{{ __('Select Status') }}
{{ __('Inactive') }}
{{ __('Active') }}
@if (has_permissions('update', 'project')) @endif
{{ __('ID') }}
{{ __('Client Name') }}
{{ __('Mobile') }}
{{ __('Title') }}
{{ __('Category') }}
{{ __('Type') }}
{{ __('Image') }}
{{ __('Enable/Disable') }}
{{ __('Video Link') }}
{{ __('Documents/Images') }}
{{ __('Action') }}
{{ __('Documents/Images') }}
{{ __('Images') }}
{{ __('Documents') }}
{{ __('Floor Plans') }}
@endsection @section('script') @endsection