Project Introduction

The Expense Tracker App is a user-friendly mobile application designed to help individuals and families manage their finances effectively. This app aims to provide users with the tools they need to track their daily expenses, set budgets, and analyze their spending habits. With the increasing importance of financial literacy and personal budgeting, the Expense Tracker App addresses the need for a simple yet powerful solution to help users gain control over their financial health.

The application features an intuitive interface that allows users to easily input their expenses, categorize them, and view detailed reports on their spending patterns. Key functionalities include budget setting, expense categorization, and visual analytics through charts and graphs. By automating the tracking process, the Expense Tracker App empowers users to make informed financial decisions and achieve their financial goals.

Project Objectives

  • To develop a user-friendly interface for easy expense entry and management.
  • To implement budget-setting features that allow users to allocate funds for different categories.
  • To provide tools for categorizing expenses and tracking spending habits over time.
  • To enable users to generate reports and visualizations of their financial data.
  • To facilitate reminders for bill payments and budget limits to prevent overspending.
  • To ensure data security and privacy for all user financial information.
  • To enhance user engagement through features like goal setting and financial tips.
  • To support multi-currency transactions for users who travel or shop internationally.

Project Modules

User Management Module

  • User Registration/Login: Allow users to create accounts and log in securely, often with options for social media or email authentication.
  • Profile Management: Enable users to manage their profiles, including personal information, financial goals, and preferences.
  • Multi-User Support: Allow multiple users to manage their finances under a single account (e.g., family or household accounts).

Dashboard Module

  • Overview of Finances: Provide a summary of the user’s financial status, including total income, expenses, and remaining budget.
  • Visualizations: Use charts and graphs to display spending patterns, income sources, and budget utilization.
  • Quick Actions: Allow users to quickly add expenses, income, or view recent transactions from the dashboard.

Expense Management Module

  • Expense Entry: Allow users to add new expenses, including details such as amount, category, date, and notes.
  • Recurring Expenses: Enable users to set up recurring expenses (e.g., rent, subscriptions) for automatic tracking.
  • Expense Categories: Provide predefined categories (e.g., food, transportation, entertainment) and allow users to create custom categories.

Income Management Module

  • Income Entry: Allow users to add new income sources, including details such as amount, source, date, and notes.
  • Recurring Income: Enable users to set up recurring income (e.g., salary, rental income) for automatic tracking.

Budgeting Module

  • Budget Creation: Allow users to set monthly or yearly budgets for different categories.
  • Budget Tracking: Monitor spending against the budget and provide alerts when users approach or exceed their budget limits.
  • Budget Reports: Generate reports to show budget performance over time.

Reports and Analytics Module

  • Spending Reports: Generate detailed reports on spending habits, categorized by type, date, or other criteria.
  • Income Reports: Provide insights into income sources and trends over time.
  • Custom Reports: Allow users to create custom reports based on specific parameters (e.g., date range, category).

Notifications and Alerts Module

  • Spending Alerts: Notify users when they are close to exceeding their budget or when a recurring expense is due.
  • Reminders: Set reminders for bill payments, income entries, or budget reviews.

Data Backup and Sync Module

  • Cloud Backup: Allow users to back up their data to the cloud for security and recovery.
  • Multi-Device Sync: Enable users to access their expense data across multiple devices (e.g., mobile, tablet, web).

Security and Privacy Module

  • Data Encryption: Ensure that sensitive financial data is encrypted and stored securely.
  • Access Control: Implement user authentication and authorization to protect user data.

Feedback and Support Module

  • User Feedback Collection: Allow users to provide feedback on the app and suggest improvements.
  • Help Center: Provide FAQs, tutorials, and support documentation to assist users.

Project Tables Queries


-- Users Table
CREATE TABLE Users (
UserId INT PRIMARY KEY IDENTITY(1,1),
Username NVARCHAR(50) NOT NULL UNIQUE,
PasswordHash NVARCHAR(255) NOT NULL,
Email NVARCHAR(100) NOT NULL UNIQUE,
Phone NVARCHAR(15),
RoleId INT,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (RoleId) REFERENCES Roles(RoleId)
);
-- Roles Table
CREATE TABLE Roles (
RoleId INT PRIMARY KEY IDENTITY(1,1),
RoleName NVARCHAR(50) NOT NULL UNIQUE
);
-- Expenses Table
CREATE TABLE Expenses (
ExpenseId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Amount DECIMAL(10, 2) NOT NULL,
Category NVARCHAR(50), -- e.g., Food, Transport, Utilities
Description NVARCHAR(MAX),
ExpenseDate DATETIME DEFAULT GETDATE(),
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Income Table
CREATE TABLE Incomes (
IncomeId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Amount DECIMAL(10, 2) NOT NULL,
Source NVARCHAR(50), -- e.g., Salary, Freelance
Description NVARCHAR(MAX),
IncomeDate DATETIME DEFAULT GETDATE(),
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Budgets Table
CREATE TABLE Budgets (
BudgetId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Category NVARCHAR(50), -- e.g., Food, Transport
Amount DECIMAL(10, 2) NOT NULL,
StartDate DATETIME NOT NULL,
EndDate DATETIME NOT NULL,
CreatedAt DATETIME DEFAULT GETDATE(),
UpdatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Reports Table
CREATE TABLE Reports (
ReportId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
ReportDate DATETIME DEFAULT GETDATE(),
TotalIncome DECIMAL(10, 2),
TotalExpenses DECIMAL(10, 2),
NetSavings AS (TotalIncome - TotalExpenses) PERSISTED,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Notifications Table
CREATE TABLE Notifications (
NotificationId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Message NVARCHAR(MAX),
IsRead BIT DEFAULT 0,
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Backup Table
CREATE TABLE Backups (
BackupId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
BackupDate DATETIME DEFAULT GETDATE(),
BackupFile NVARCHAR(255), -- Path to the backup file
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);
-- Feedback Table
CREATE TABLE Feedbacks (
FeedbackId INT PRIMARY KEY IDENTITY(1,1),
UserId INT,
Comments NVARCHAR(MAX),
Rating INT CHECK (Rating >= 1 AND Rating <= 5),
CreatedAt DATETIME DEFAULT GETDATE(),
FOREIGN KEY (User Id) REFERENCES Users(UserId)
);

Explanation of Tables

Users: Stores user information, including credentials and roles.

Roles: Defines different roles within the system (e.g., admin, user).

Expenses: Records user expenses, including amount, category, description, and date.

Incomes: Tracks user income, including amount, source, description, and date.

Budgets: Manages user budgets for different categories, including amounts and date ranges.

Reports: Generates reports for users, summarizing total income, expenses, and net savings.

Notifications: Manages notifications sent to users, tracking whether they have been read.

Backups: Stores information about backups made by users, including backup dates and file paths.

Feedback: Collects feedback from users regarding the application, including ratings and comments.

Creating Models and Migrations

To create the models and migrations for the provided MySQL schema in Laravel 11, you can follow these steps. Below, I will provide the migration files for each table and the corresponding Eloquent models.

Step 1: Create Migrations


php artisan make:migration create_users_table

Migration for Users Table


// database/migrations/xxxx_x_xx_create_users_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id('User Id');
$table->string('Username', 50)->unique();
$table->string('PasswordHash', 255);
$table->string('Email', 100)->unique();
$table->string('Phone', 15)->nullable();
$table->foreignId('RoleId')->constrained('roles', 'RoleId')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}

Migration for Roles Table


// database/migrations/xxxx_xx_create_roles_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateRolesTable extends Migration
{
public function up()
{
Schema::create('roles', function (Blueprint $table) {
$table->id('RoleId');
$table->string('RoleName', 50)->unique();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('roles');
}
}

Migration for Expenses Table


// database/migrations/xxxx_xx_create_expenses_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateExpensesTable extends Migration
{
public function up()
{
Schema::create('expenses', function (Blueprint $table) {
$table->id('ExpenseId');
$table->foreignId('User Id')->constrained('users', 'User Id')->nullable();
$table->decimal('Amount', 10, 2);
$table->string('Category')->nullable();
$table->text('Description')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('expenses');
}
}

Migration for Incomes Table


// database/migrations/xxxx_xx_create_incomes_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateIncomesTable extends Migration
{
public function up()
{
Schema::create('incomes', function (Blueprint $table) {
$table->id('IncomeId');
$table->foreignId('User Id')->constrained('users', 'User Id')->nullable();
$table->decimal('Amount', 10, 2);
$table->string('Source')->nullable();
$table->text('Description')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('incomes');
}
}

Migration for Budgets Table


// database/migrations/xxxx_xx_create_budgets_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateBudgetsTable extends Migration
{
public function up()
{
Schema::create('budgets', function (Blueprint $table) {
$table->id('BudgetId');
$table->foreignId('User Id')->constrained('users', 'User Id')->nullable();
$table->string('Category')->nullable();
$table->decimal('Amount', 10, 2);
$table->date('StartDate');
$table->date('EndDate');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('budgets');
}
}

Migration for Reports Table


// database/migrations/xxxx_xx_create_reports_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateReportsTable extends Migration
{
public function up()
{
Schema::create('reports', function (Blueprint $table) {
$table->id('ReportId');
$table->foreignId('User Id')->constrained('users', 'User Id')->nullable();
$table->date('ReportDate');
$table->decimal('TotalIncome', 10, 2)->nullable();
$table->decimal('TotalExpenses', 10, 2)->nullable();
$table->decimal('NetSavings', 10, 2)->virtualAs('TotalIncome - TotalExpenses');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('reports');
}
}

Migration for Notifications Table


// database/migrations/xxxx_xx_create_notifications_table.php
use Illuminate\Database\Migrations;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateNotificationsTable extends Migration
{
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->id('NotificationId');
$table->foreignId('User Id')->constrained('users', 'User Id')->nullable();
$table->text('Message');
$table->boolean('IsRead')->default(false);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('notifications');
}
}

Migration for Backups Table


// database/migrations/xxxx_xx_create_backups_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateBackupsTable extends Migration
{
public function up()
{
Schema::create('backups', function (Blueprint $table) {
$table->id('BackupId');
$table->foreignId('User Id')->constrained('users', 'User Id')->nullable();
$table->date('BackupDate');
$table->string('BackupFile', 255);
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('backups');
}
}

Migration for Feedback Table


// database/migrations/xxxx_xx_create_feedbacks_table.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFeedbacksTable extends Migration
{
public function up()
{
Schema::create('feedbacks', function (Blueprint $table) {
$table->id('FeedbackId');
$table->foreignId('User Id')->constrained('users', 'User Id')->nullable();
$table->text('Comments')->nullable();
$table->integer('Rating')->check('Rating >= 1 AND Rating <= 5');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('feedbacks');
}
}

Step 2: Create Eloquent Models


php artisan make:model User

User Model


// app/Models/User.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
use HasFactory;
protected $table = 'users';
protected $fillable = [
'Username',
'PasswordHash',
'Email',
'Phone',
'RoleId',
];
public function roles()
{
return $this->belongsTo(Role::class, 'RoleId');
}
public function expenses()
{
return $this->hasMany(Expense::class, 'User Id');
}
public function incomes()
{
return $this->hasMany(Income::class, 'User Id');
}
public function budgets()
{
return $this->hasMany(Budget::class, 'User Id');
}
public function reports()
{
return $this->hasMany(Report::class, 'User Id');
}
public function notifications()
{
return $this->hasMany(Notification::class, 'User Id');
}
public function backups()
{
return $this->hasMany(Backup::class, 'User Id');
}
public function feedbacks()
{
return $this->hasMany(Feedback::class, 'User Id');
}
}

Role Model


// app/Models/Role.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Role extends Model
{
use HasFactory;
protected $table = 'roles';
protected $fillable = [
'RoleName',
];
public function users()
{
return $this->hasMany(User::class, 'RoleId');
}
}

Expense Model


// app/Models/Expense.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Expense extends Model
{
use HasFactory;
protected $table = 'expenses';
protected $fillable = [
'User Id',
'Amount',
'Category',
'Description',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Income Model


// app/Models/Income.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Income extends Model
{
use HasFactory;
protected $table = 'incomes';
protected $fillable = [
'User Id',
'Amount',
'Source',
'Description',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Budget Model


// app/Models/Budget.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Budget extends Model
{
use HasFactory;
protected $table = 'budgets';
protected $fillable = [
'User Id',
'Category',
'Amount',
'StartDate',
'EndDate',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Report Model


// app/Models/Report.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Report extends Model
{
use HasFactory;
protected $table = 'reports';
protected $fillable = [
'User Id',
'ReportDate',
'TotalIncome',
'TotalExpenses',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Notification Model


// app/Models/Notification.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Notification extends Model
{
use HasFactory;
protected $table = 'notifications';
protected $fillable = [
'User Id',
'Message',
'IsRead',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Backup Model


// app/Models/Backup.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Backup extends Model
{
use HasFactory;
protected $table = 'backups';
protected $fillable = [
'User Id',
'BackupDate',
'BackupFile',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Feedback Model


// app/Models/Feedback.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Feedback extends Model
{
use HasFactory;
protected $table = 'feedbacks';
protected $fillable = [
'User Id',
'Comments',
'Rating',
];
public function user()
{
return $this->belongsTo(User::class, 'User Id');
}
}

Step 3: Run Migrations

After creating the migration files, you can run the migrations to create the tables in your database. Use the following command:


php artisan migrate

Step 4: Seed the Database (Optional)

If you want to populate your tables with some initial data, you can create seeders. For example, to create a seeder for the users table, run:


php artisan make:seeder UsersTableSeeder

Then, you can define the data you want to insert in the run method of the seeder class.

Example Seeder for Users Table


// database/seeders/UsersTableSeeder.php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use App\Models\User;
class UsersTableSeeder extends Seeder
{
public function run()
{
User::create([
'Username' => 'admin',
'PasswordHash' => bcrypt('password'),
'Email' => 'admin@example.com',
'Phone' => '1234567890',
'RoleId' => 1,
]);
}
}

Step 5: Register Seeders

To run the seeder, you need to register it in the DatabaseSeeder.php file:


// database/seeders/DatabaseSeeder.php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
public function run()
{
$this->call([
UsersTableSeeder::class,
// Add other seeders here
]);
}
}

Step 6: Run Seeders

Finally, run the seeders using the following command:


php artisan db:seed

This will populate your database with the initial data defined in your seeders. You can create additional seeders for other tables similarly.

Creating Controllers for Each Model

To create controllers for each model with complete CRUD operations in Laravel, you can use the Artisan command to generate resource controllers. Below, I will provide the commands to create the controllers and the basic structure for each controller, including the CRUD operations.

Step 1: Create Resource Controllers

You can create a resource controller for each model using the following command:


php artisan make:controller UserController --resource
php artisan make:controller RoleController --resource
php artisan make:controller ExpenseController --resource
php artisan make:controller IncomeController --resource
php artisan make:controller BudgetController --resource
php artisan make:controller ReportController --resource
php artisan make:controller NotificationController --resource
php artisan make:controller BackupController --resource
php artisan make:controller FeedbackController --resource

Step 2: Implement CRUD Operations

Below are the basic implementations for each controller. You can customize them further based on your application's requirements.

UserController


// app/Http/Controllers/UserController.php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\Http\Request;
class UserController extends Controller
{
public function index()
{
$users = User::all();
return view('users.index', compact('users'));
}
public function create()
{
return view('users.create');
}
public function store(Request $request)
{
$request->validate([
'Username' => 'required|unique:users|max:50',
'PasswordHash' => 'required',
'Email' => 'required|email|unique:users|max:100',
'Phone' => 'nullable|max:15',
'RoleId' => 'nullable|exists:roles,RoleId',
]);
User::create($request->all());
return redirect()->route('users.index')->with('success', 'User created successfully.');
}
public function show(User $user)
{
return view('users.show', compact('user'));
}
public function edit(User $user)
{
return view('users.edit', compact('user'));
}
public function update(Request $request, User $user)
{
$request->validate([
'Username' => 'required|max:50|unique:users,Username,' . $user->id,
'PasswordHash' => 'required',
'Email' => 'required|email|max:100|unique:users,Email,' . $user->id,
'Phone' => 'nullable|max:15',
'RoleId' => 'nullable|exists:roles,RoleId',
]);
$user->update($request->all());
return redirect()->route('users.index')->with('success', 'User updated successfully.');
}
public function destroy(User $user)
{
$user->delete();
return redirect()->route('users.index')->with('success', 'User deleted successfully.');
}
}

RoleController


// app/Http/Controllers/RoleController.php
namespace App\Http\Controllers;
use App\Models\Role;
use Illuminate\Http\Request;
class RoleController extends Controller
{
public function index()
{
$roles = Role::all();
return view('roles.index', compact('roles'));
}
public function create()
{
return view('roles.create');
}
public function store(Request $request)
{
$request->validate([
'RoleName' => 'required|unique:roles|max:50',
]);
Role::create($request->all());
return redirect()->route('roles.index')->with('success', 'Role created successfully.');
}
public function show(Role $role)
{
return view('roles.show', compact('role'));
}
public function edit(Role $role)
{
return view('roles.edit', compact('role'));
}
public function update(Request $request, Role $role)
{
$request->validate([
'RoleName' => 'required|max:50|unique:roles,RoleName,' . $role->id,
]);
$role->update($request->all());
return redirect()->route('roles.index')->with('success', 'Role updated successfully.');
}
public function destroy(Role $role)
{
$role->delete();
return redirect()->route('roles.index')->with('success', 'Role deleted successfully.');
}
}

ExpenseController


// app/Http/Controllers/ExpenseController.php
namespace App\Http\Controllers;
use App\Models\Expense;
use App\Models\User;
use Illuminate\Http\Request;
class ExpenseController extends Controller
{
public function index()
{
$expenses = Expense::all();
return view('expenses.index', compact('expenses'));
}
public function create()
{
$users = User::all();
return view('expenses.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Amount' => 'required|numeric',
'Category' => 'nullable|max:50',
'Description' => 'nullable|max:255',
]);
Expense::create($request->all());
return redirect()->route('expenses.index')->with('success', 'Expense created successfully.');
}
public function show(Expense $expense)
{
return view('expenses.show', compact('expense'));
}
public function edit(Expense $expense)
{
$users = User::all();
return view('expenses.edit', compact('expense', 'users'));
}
public function update(Request $request, Expense $expense)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Amount' => 'required|numeric',
'Category' => 'nullable|max:50',
'Description' => 'nullable|max:255',
]);
$expense->update($request->all());
return redirect()->route('expenses.index')->with('success', 'Expense updated successfully.');
}
public function destroy(Expense $expense)
{
$expense->delete();
return redirect()->route('expenses.index')->with('success', 'Expense deleted successfully.');
}
}

IncomeController


// app/Http/Controllers/IncomeController.php
namespace App\Http\Controllers;
use App\Models\Income;
use App\Models\User;
use Illuminate\Http\Request;
class IncomeController extends Controller
{
public function index()
{
$incomes = Income::all();
return view('incomes.index', compact('incomes'));
}
public function create()
{
$users = User::all();
return view('incomes.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Amount' => 'required|numeric',
'Source' => 'nullable|max:50',
'Description' => 'nullable|max:255',
]);
Income::create($request->all());
return redirect()->route('incomes.index')->with('success', 'Income created successfully.');
}
public function show(Income $income)
{
return view('incomes.show', compact('income'));
}
public function edit(Income $income)
{
$users = User::all();
return view('incomes.edit', compact('income', 'users'));
}
public function update(Request $request, Income $income)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Amount' => 'required|numeric',
'Source' => 'nullable|max:50',
'Description' => 'nullable|max:255',
]);
$income->update($request->all());
return redirect()->route('incomes.index')->with('success', 'Income updated successfully.');
}
public function destroy(Income $income)
{
$income->delete();
return redirect()->route('incomes.index')->with('success', 'Income deleted successfully.');
}
}

BudgetController


// app/Http/Controllers/BudgetController.php
namespace App\Http\Controllers;
use App\Models\Budget;
use App\Models\User;
use Illuminate\Http\Request;
class BudgetController extends Controller
{
public function index()
{
$budgets = Budget::all();
return view('budgets.index', compact('budgets'));
}
public function create()
{
$users = User::all();
return view('budgets.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Category' => 'nullable|max:50',
'Amount' => 'required|numeric',
'StartDate' => 'required|date',
'EndDate' => 'required|date|after_or_equal:StartDate',
]);
Budget::create($request->all());
return redirect()->route('budgets.index')->with('success', 'Budget created successfully.');
}
public function show(Budget $budget)
{
return view('budgets.show', compact('budget'));
}
public function edit(Budget $budget)
{
$users = User::all();
return view('budgets.edit', compact('budget', 'users'));
}
public function update(Request $request, Budget $budget)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Category' => ' nullable|max:50',
'Amount' => 'required|numeric',
'StartDate' => 'required|date',
'EndDate' => 'required|date|after_or_equal:StartDate',
]);
$budget->update($request->all());
return redirect()->route('budgets.index')->with('success', 'Budget updated successfully.');
}
public function destroy(Budget $budget)
{
$budget->delete();
return redirect()->route('budgets.index')->with('success', 'Budget deleted successfully.');
}
}

ReportController


// app/Http/Controllers/ReportController.php
namespace App\Http\Controllers;
use App\Models\Report;
use App\Models\User;
use Illuminate\Http\Request;
class ReportController extends Controller
{
public function index()
{
$reports = Report::all();
return view('reports.index', compact('reports'));
}
public function create()
{
$users = User::all();
return view('reports.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'ReportDate' => 'required|date',
'TotalIncome' => 'nullable|numeric',
'TotalExpenses' => 'nullable|numeric',
]);
Report::create($request->all());
return redirect()->route('reports.index')->with('success', 'Report created successfully.');
}
public function show(Report $report)
{
return view('reports.show', compact('report'));
}
public function edit(Report $report)
{
$users = User::all();
return view('reports.edit', compact('report', 'users'));
}
public function update(Request $request, Report $report)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'ReportDate' => 'required|date',
'TotalIncome' => 'nullable|numeric',
'TotalExpenses' => 'nullable|numeric',
]);
$report->update($request->all());
return redirect()->route('reports.index')->with('success', 'Report updated successfully.');
}
public function destroy(Report $report)
{
$report->delete();
return redirect()->route('reports.index')->with('success', 'Report deleted successfully.');
}
}

NotificationController


// app/Http/Controllers/NotificationController.php
namespace App\Http\Controllers;
use App\Models\Notification;
use App\Models\User;
use Illuminate\Http\Request;
class NotificationController extends Controller
{
public function index()
{
$notifications = Notification::all();
return view('notifications.index', compact('notifications'));
}
public function create()
{
$users = User::all();
return view('notifications.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Message' => 'required|max:255',
'IsRead' => 'nullable|boolean',
]);
Notification::create($request->all());
return redirect()->route('notifications.index')->with('success', 'Notification created successfully.');
}
public function show(Notification $notification)
{
return view('notifications.show', compact('notification'));
}
public function edit(Notification $notification)
{
$users = User::all();
return view('notifications.edit', compact('notification', 'users'));
}
public function update(Request $request, Notification $notification)
{
$request->validate([
'User Id' => 'required|exists:users,User Id',
'Message' => 'required|max:255',
'IsRead' => 'nullable|boolean',
]);
$notification->update($request->all());
return redirect()->route('notifications.index')->with('success', 'Notification updated successfully.');
}
public function destroy(Notification $notification)
{
$notification->delete();
return redirect()->route('notifications.index')->with('success', 'Notification deleted successfully.');
}
}

BackupController


// app/Http/Controllers/BackupController.php
namespace App\Http\Controllers;
use App\Models\Backup;
use App\Models\User;
use Illuminate\Http\Request;
class BackupController extends Controller
{
public function index()
{
$backups = Backup::all();
return view('backups.index', compact('backups'));
}
public function create()
{
$users = User::all();
return view('backups.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'User Id => 'required|exists:users,UserId',
'BackupDate' => 'required|date',
'BackupFile' => 'required|string|max:255',
]);
Backup::create($request->all());
return redirect()->route('backups.index')->with('success', 'Backup created successfully.');
}
public function show(Backup $backup)
{
return view('backups.show', compact('backup'));
}
public function edit(Backup $backup)
{
$users = User::all();
return view('backups.edit', compact('backup', 'users'));
}
public function update(Request $request, Backup $backup)
{
$request->validate([
'UserId' => 'required|exists:users,UserId',
'BackupDate' => 'required|date',
'BackupFile' => 'required|string|max:255',
]);
$backup->update($request->all());
return redirect()->route('backups.index')->with('success', 'Backup updated successfully.');
}
public function destroy(Backup $backup)
{
$backup->delete();
return redirect()->route('backups.index')->with('success', 'Backup deleted successfully.');
}
}

FeedbackController


// app/Http/Controllers/FeedbackController.php
namespace App\Http\Controllers;
use App\Models\Feedback;
use App\Models\User;
use Illuminate\Http\Request;
class FeedbackController extends Controller
{
public function index()
{
$feedbacks = Feedback::all();
return view('feedbacks.index', compact('feedbacks'));
}
public function create()
{
$users = User::all();
return view('feedbacks.create', compact('users'));
}
public function store(Request $request)
{
$request->validate([
'UserId' => 'required|exists:users,UserId',
'Comments' => 'nullable|string|max:255',
'Rating' => 'required|integer|between:1,5',
]);
Feedback::create($request->all());
return redirect()->route('feedbacks.index')->with('success', 'Feedback created successfully.');
}
public function show(Feedback $feedback)
{
return view('feedbacks.show', compact('feedback'));
}
public function edit(Feedback $feedback)
{
$users = User::all();
return view('feedbacks.edit', compact('feedback', 'users'));
}
public function update(Request $request, Feedback $feedback)
{
$request->validate([
'UserId' => 'required|exists:users,UserId',
'Comments' => 'nullable|string|max:255',
'Rating' => 'required|integer|between:1,5',
]);
$feedback->update($request->all());
return redirect()->route('feedbacks.index')->with('success', 'Feedback updated successfully.');
}
public function destroy(Feedback $feedback)
{
$feedback->delete();
return redirect()->route('feedbacks.index')->with('success', 'Feedback deleted successfully.');
}
}

Step 3: Define Routes

You need to define routes for each controller in your web.php file. Here's an example of how to set up the routes:


// routes/web.php
use App\Http\Controllers\UserController;
use App\Http\Controllers\RoleController;
use App\Http\Controllers\ExpenseController;
use App\Http\Controllers\IncomeController;
use App\Http\Controllers\BudgetController;
use App\Http\Controllers\ReportController;
use App\Http\Controllers\NotificationController;
use App\Http\Controllers\BackupController;
use App\Http\Controllers\FeedbackController;
Route::resource('users', UserController::class);
Route::resource('roles', RoleController::class);
Route::resource('expenses', ExpenseController::class);
Route::resource('incomes', IncomeController::class);
Route::resource('budgets', BudgetController::class);
Route::resource('reports', ReportController::class);
Route::resource('notifications', NotificationController::class);
Route::resource('backups', BackupController::class);
Route::resource('feedbacks', FeedbackController::class);

Step 4: Create Views

You will need to create views for each of the CRUD operations (index, create, edit, show) for each model. These views will be located in the resources/views directory, organized by model name (e.g., users, roles, etc.).

Directory Structure

You should create a directory for each model under resources/views. For example:


resources/views/
├── users/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── roles/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── expenses/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── incomes/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── budgets/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── reports/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── notifications/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
├── backups/
│ ├── index.blade.php
│ ├── create.blade.php
│ ├── edit.blade.php
│ └── show.blade.php
└── feedbacks/
├── index.blade.php
├── create.blade.php
├── edit.blade.php
└── show.blade.php

Example View Files

Users Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Users</h1>
<a href="{{ route('users.create') }}" class="btn btn-primary mb-3">Create User</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Username</th>
<th>Email</th>
<th>Phone</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td>{{ $user->Username }}</td>
<td>{{ $user->Email }}</td>
<td>{{ $user->Phone }}</td>
<td>
<a href="{{ route('users.edit', $user) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('users.destroy', $user) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('users.show', $user) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create User</h1>
<form action="{{ route('users.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="Username" class="form-label">Username</label>
<input type="text" class="form-control" id="Username" name="Username" required>
</div>
<div class="mb-3">
<label for="PasswordHash" class="form-label">Password</label>
<input type="password" class="form-control" id="PasswordHash" name="PasswordHash" required>
</div>
<div class="mb-3">
<label for="Email" class="form-label">Email</label>
<input type="email" class="form-control" id="Email" name="Email" required>
</div>
<div class="mb-3">
<label for="Phone" class="form-label">Phone</label>
<input type="text" class="form-control" id="Phone" name="Phone">
</div>
<div class="mb-3">
<label for="RoleId" class="form-label">Role</label>
<select class="form-select" id="RoleId" name="RoleId">
<option value="">Select Role</option>
@foreach($roles as $role)
<option value="{{ $role->RoleId }}">{{ $role->RoleName }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-success">Create User</button>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit User</h1>
<form action="{{ route('users.update', $user) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="Username" class="form-label">Username</label>
<input type="text" class="form-control" id="Username" name="Username" value="{{ $user->Username }}" required>
</div>
<div class="mb-3">
<label for="PasswordHash" class="form-label">Password</label>
<input type="password" class="form-control" id="PasswordHash" name="PasswordHash" required>
</div>
<div class="mb-3">
<label for="Email" class="form-label">Email</label>
<input type="email" class="form-control" id="Email" name="Email" value="{{ $user->Email }}" required>
</div>
<div class="mb-3">
<label for="Phone" class="form-label">Phone</label>
<input type="text" class="form-control" id="Phone" name="Phone" value="{{ $user->Phone }}">
</div>
<div class="mb-3">
<label for="RoleId" class="form-label">Role</label>
<select class="form-select" id="RoleId" name="RoleId">
<option value="">Select Role</option>
@foreach($roles as $role)
<option value="{{ $role->RoleId }}" {{ $role->RoleId == $user->RoleId ? 'selected' : '' }}>{{ $role->RoleName }}</option>
@endforeach
</select>
</div>
<button type="submit" class="btn btn-primary">Update User</button>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>User Details</h1>
<div class="mb-3">
<strong>Username:</strong> {{ $user->Username }}
</div>
<div class="mb-3">
<strong>Email:</strong> {{ $user->Email }}
</div>
<div class="mb-3">
<strong>Phone:</strong> {{ $user->Phone }}
</div>
<div class="mb-3">
<strong>Role:</strong> {{ $user->role->RoleName ?? 'N/A' }}
</div>
<a href="{{ route('users.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Roles Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Roles</h1>
<a href="{{ route('roles.create') }}" class="btn btn-primary mb-3">Create Role</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>Role Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($roles as $role)
<tr>
<td>{{ $role->RoleName }}</td>
<td>
<a href="{{ route('roles.edit', $role) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('roles.destroy', $role) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('roles.show', $role) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Role</h1>
<form action="{{ route('roles.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="RoleName" class="form-label">Role Name</label>
<input type="text" class="form-control" id="RoleName" name="RoleName" required>
</div>
<button type="submit" class="btn btn-success">Create Role</button>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Role</h1>
<form action="{{ route('roles.update', $role) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="RoleName" class="form-label">Role Name</label>
<input type="text" class="form-control" id="RoleName" name="RoleName" value="{{ $role->RoleName }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Role</button>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Role Details</h1>
<div class="mb-3">
<strong>Role Name:</strong> {{ $role->RoleName }}
</div>
<a href="{{ route('roles.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Expenses Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Expenses</h1>
<a href="{{ route('expenses.create') }}" class="btn btn-primary mb-3">Create Expense</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Amount</th>
<th>Category</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($expenses as $expense)
<tr>
<td>{{ $expense->user->Username }}</td>
<td>{{ $expense->Amount }}</td>
<td>{{ $expense->Category }}</td>
<td>
<a href="{{ route('expenses.edit', $expense) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('expenses.destroy', $expense) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('expenses.show', $expense) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Expense</h1>
<form action="{{ route('expenses.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->User Id }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form-control" id="Amount" name="Amount" required>
</div>
<div class="mb-3">
<label for="Category" class="form-label">Category</label>
<input type="text" class="form-control" id="Category" name="Category">
</div>
<div class="mb-3">
<label for="Description" class="form-label">Description</label>
<textarea class="form-control" id="Description" name="Description"></textarea>
</div>
<button type="submit" class="btn btn-success">Create Expense</button>
<a href="{{ route('expenses.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Expense</h1>
<form action="{{ route('expenses.update', $expense) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->User Id }}" {{ $user->User Id == $expense->User Id ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form-control" id="Amount" name="Amount" value="{{ $expense->Amount }}" required>
</div>
<div class="mb-3">
<label for="Category" class="form-label">Category</label>
<input type="text" class="form-control" id="Category" name="Category" value="{{ $expense->Category }}">
</div>
<div class="mb-3">
<label for="Description" class="form-label">Description</label>
<textarea class="form-control" id="Description" name="Description">{{ $expense->Description }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Update Expense</button>
<a href="{{ route('expenses.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Expense Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $expense->user->Username }}
</div>
<div class="mb-3">
<strong>Amount:</strong> {{ $expense->Amount }}
</div>
<div class="mb-3">
<strong>Category:</strong> {{ $expense->Category }}
</div>
<div class="mb-3">
<strong>Description:</strong> {{ $expense->Description }}
</div>
<a href="{{ route('expenses.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Incomes Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Incomes</h1>
<a href="{{ route('incomes.create') }}" class="btn btn-primary mb-3">Create Income</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Amount</th>
<th>Source</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($incomes as $income)
<tr>
<td>{{ $income->user->Username }}</td>
<td>{{ $income->Amount }}</td>
<td>{{ $income->Source }}</td>
<td>
<a href="{{ route('incomes.edit', $income) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('incomes.destroy', $income) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('incomes.show', $income) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Income</h1>
<form action="{{ route('incomes.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->User Id }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form-control" id="Amount" name="Amount" required>
</div>
<div class="mb-3">
<label for="Source" class="form-label">Source</label>
<input type="text" class="form-control" id="Source" name="Source">
</div>
<div class="mb-3">
<label for="Description" class="form-label">Description</label>
<textarea class="form-control" id="Description" name="Description"></textarea>
</div>
<button type="submit" class="btn btn-success">Create Income</button>
<a href="{{ route('incomes.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Income</h1>
<form action="{{ route('incomes.update', $income) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->User Id }}" {{ $user->User Id == $income->User Id ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form-control" id="Amount" name="Amount" value="{{ $income->Amount }}" required>
</div>
<div class="mb-3">
<label for="Source" class="form-label">Source</label>
<input type="text" class="form-control" id="Source" name="Source" value="{{ $income->Source }}">
</div>
<div class="mb-3">
<label for="Description" class="form-label">Description</label>
<textarea class="form-control" id="Description" name="Description">{{ $income->Description }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Update Income</button>
<a href="{{ route('incomes.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Income Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $income->user->Username }}
</div>
<div class="mb-3">
<strong>Amount:</strong> {{ $income->Amount }}
</div>
<div class="mb-3">
<strong>Source:</strong> {{ $income->Source }}
</div>
<div class="mb-3">
<strong>Description:</strong> {{ $income->Description }}
</div>
<a href="{{ route('incomes.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Budgets Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Budgets</h1>
<a href="{{ route('budgets.create') }}" class="btn btn-primary mb-3">Create Budget</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Category</th>
<th>Amount</th>
<th>Start Date</th>
<th>End Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($budgets as $budget)
<tr>
<td>{{ $budget->user->Username }}</td>
<td>{{ $budget->Category }}</td>
<td>{{ $budget->Amount }}</td>
<td>{{ $budget->StartDate }}</td>
<td>{{ $budget->EndDate }}</td>
<td>
<a href="{{ route('budgets.edit', $budget) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('budgets.destroy', $budget) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('budgets.show', $budget) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Budget</h1>
<form action="{{ route('budgets.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->User Id }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Category" class="form-label">Category</label>
<input type="text" class="form-control" id="Category" name="Category" required>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form-control" id="Amount" name="Amount" required>
</div>
<div class="mb-3">
<label for="StartDate" class="form-label">Start Date</label>
<input type="date" class="form-control" id="StartDate" name="StartDate" required>
</div>
<div class="mb-3">
<label for="EndDate" class="form-label">End Date</label>
<input type="date" class="form-control" id="EndDate" name="EndDate" required>
</div>
<button type="submit" class="btn btn-success">Create Budget</button>
<a href="{{ route('budgets.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Budget</h1>
<form action="{{ route('budgets.update', $budget) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="User Id" class="form-label">User </label>
<select class="form-select" id="User Id" name="User Id" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->User Id }}" {{ $user->User Id == $budget->User Id ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Category" class="form-label">Category</label>
<input type="text" class="form-control" id="Category" name="Category" value="{{ $budget->Category }}" required>
</div>
<div class="mb-3">
<label for="Amount" class="form-label">Amount</label>
<input type="number" class="form -control" id="Amount" name="Amount" value="{{ $budget->Amount }}" required>
</div>
<div class="mb-3">
<label for="StartDate" class="form-label">Start Date</label>
<input type="date" class="form-control" id="StartDate" name="StartDate" value="{{ $budget->StartDate }}" required>
</div>
<div class="mb-3">
<label for="EndDate" class="form-label">End Date</label>
<input type="date" class="form-control" id="EndDate" name="EndDate" value="{{ $budget->EndDate }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Budget</button>
<a href="{{ route('budgets.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Budget Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $budget->user->Username }}
</div>
<div class="mb-3">
<strong>Category:</strong> {{ $budget->Category }}
</div>
<div class="mb-3">
<strong>Amount:</strong> {{ $budget->Amount }}
</div>
<div class="mb-3">
<strong>Start Date:</strong> {{ $budget->StartDate }}
</div>
<div class="mb-3">
<strong>End Date:</strong> {{ $budget->EndDate }}
</div>
<a href="{{ route('budgets.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Reports Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Reports</h1>
<a href="{{ route('reports.create') }}" class="btn btn-primary mb-3">Create Report</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Report Date</th>
<th>Total Income</th>
<th>Total Expenses</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($reports as $report)
<tr>
<td>{{ $report->user->Username }}</td>
<td>{{ $report->ReportDate }}</td>
<td>{{ $report->TotalIncome }}</td>
<td>{{ $report->TotalExpenses }}</td>
<td>
<a href="{{ route('reports.edit', $report) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('reports.destroy', $report) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('reports.show', $report) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Report</h1>
<form action="{{ route('reports.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="ReportDate" class="form-label">Report Date</label>
<input type="date" class="form-control" id="ReportDate" name="ReportDate" required>
</div>
<div class="mb-3">
<label for="TotalIncome" class="form-label">Total Income</label>
<input type="number" class="form-control" id="TotalIncome" name="TotalIncome">
</div>
<div class="mb- 3">
<label for="TotalExpenses" class="form-label">Total Expenses</label>
<input type="number" class="form-control" id="TotalExpenses" name="TotalExpenses">
</div>
<button type="submit" class="btn btn-success">Create Report</button>
<a href="{{ route('reports.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Report</h1>
<form action="{{ route('reports.update', $report) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}" {{ $user->UserId == $report->UserId ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="ReportDate" class="form-label">Report Date</label>
<input type="date" class="form-control" id="ReportDate" name="ReportDate" value="{{ $report->ReportDate }}" required>
</div>
<div class="mb-3">
<label for="TotalIncome" class="form-label">Total Income</label>
<input type="number" class="form-control" id="TotalIncome" name="TotalIncome" value="{{ $report->TotalIncome }}">
</div>
<div class="mb-3">
<label for="TotalExpenses" class="form-label">Total Expenses</label>
<input type="number" class="form-control" id="TotalExpenses" name="TotalExpenses" value="{{ $report->TotalExpenses }}">
</div>
<button type="submit" class="btn btn-primary">Update Report</button>
<a href="{{ route('reports.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Report Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $report->user->Username }}
</div>
<div class="mb-3">
<strong>Report Date:</strong> {{ $report->ReportDate }}
</div>
<div class="mb-3">
<strong>Total Income:</strong> {{ $report->TotalIncome }}
</div>
<div class="mb-3">
<strong>Total Expenses:</strong> {{ $report->TotalExpenses }}
</div>
<a href="{{ route('reports.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Notifications Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Notifications</h1>
<a href="{{ route('notifications.create') }}" class="btn btn-primary mb-3">Create Notification</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Message</th>
<th>Is Read</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($notifications as $notification)
<tr>
<td>{{ $notification->user->Username }}</td>
<td>{{ $notification->Message }}</td>
<td>{{ $notification->IsRead ? 'Yes' : 'No' }}</td>
<td>
<a href="{{ route('notifications.edit', $notification) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('notifications.destroy', $notification) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('notifications.show', $notification) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</ div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Notification</h1>
<form action="{{ route('notifications.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Message" class="form-label">Message</label>
<textarea class="form-control" id="Message" name="Message" required></textarea>
</div>
<div class="mb-3">
<label for="IsRead" class="form-label">Is Read</label>
<select class="form-select" id="IsRead" name="IsRead">
<option value="0">No</option>
<option value="1">Yes</option>
</select>
</div>
<button type="submit" class="btn btn-success">Create Notification</button>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Notification</h1>
<form action="{{ route('notifications.update', $notification) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}" {{ $user->UserId == $notification->UserId ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Message" class="form-label">Message</label>
<textarea class="form-control" id="Message" name="Message" required>{{ $notification->Message }}</textarea>
</div>
<div class="mb-3">
<label for="IsRead" class="form-label">Is Read</label>
<select class="form-select" id="IsRead" name="IsRead">
<option value="0" {{ $notification->IsRead ? '' : 'selected' }}>No</option>
<option value="1" {{ $notification->IsRead ? 'selected' : '' }}>Yes</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Update Notification</button>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Notification Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $notification->user->Username }}
</div>
<div class="mb-3">
<strong>Message:</strong> {{ $notification->Message }}
</div>
<div class="mb-3">
<strong>Is Read:</strong> {{ $notification->IsRead ? 'Yes' : 'No' }}
</div>
<a href="{{ route('notifications.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Backups Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Backups</h1>
<a href="{{ route('backups.create') }}" class="btn btn-primary mb-3">Create Backup</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Backup Date</th>
<th>Backup File</th>
<th>Actions</th>
</tr>
</thead <tbody>
@foreach($backups as $backup)
<tr>
<td>{{ $backup->user->Username }}</td>
<td>{{ $backup->BackupDate }}</td>
<td>{{ $backup->BackupFile }}</td>
<td>
<a href="{{ route('backups.edit', $backup) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('backups.destroy', $backup) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('backups.show', $backup) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Backup</h1>
<form action="{{ route('backups.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="BackupDate" class="form-label">Backup Date</label>
<input type="date" class="form-control" id="BackupDate" name="BackupDate" required>
</div>
<div class="mb-3">
<label for="BackupFile" class="form-label">Backup File</label>
<input type="text" class="form-control" id="BackupFile" name="BackupFile" required>
</div>
<button type="submit" class="btn btn-success">Create Backup</button>
<a href="{{ route('backups.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Backup</h1>
<form action="{{ route('backups.update', $backup) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}" {{ $user->UserId == $backup->UserId ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="BackupDate" class="form-label">Backup Date</label>
<input type="date" class="form-control" id="BackupDate" name="BackupDate" value="{{ $backup->BackupDate }}" required>
</div>
<div class="mb-3">
<label for="BackupFile" class="form-label">Backup File</label>
<input type="text" class="form-control" id="BackupFile" name="BackupFile" value="{{ $backup->BackupFile }}" required>
</div>
<button type="submit" class="btn btn-primary">Update Backup</button>
<a href="{{ route('backups.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Backup Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $backup->user->Username }}
</div>
<div class="mb-3">
<strong>Backup Date:</strong> {{ $backup->BackupDate }}
</div>
<div class="mb-3">
<strong>Backup File:</strong> {{ $backup->BackupFile }}
</div>
<a href="{{ route('backups.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Feedbacks Views

index.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Feedbacks</h1>
<a href="{{ route('feedbacks.create') }}" class="btn btn-primary mb-3">Create Feedback</a>
@if(session('success'))
<div class="alert alert-success">{{ session('success') }}</div>
@endif
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Comments</th>
<th>Rating</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach($feedbacks as $feedback)
<tr>
<td>{{ $feedback->user->Username }}</td>
<td>{{ $feedback->Comments }}</td>
<td>{{ $feedback->Rating }}</td>
<td>
<a href="{{ route('feedbacks.edit', $feedback) }}" class="btn btn-warning">Edit</a>
<form action="{{ route('feedbacks.destroy', $feedback) }}" method="POST" style="display:inline;">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
<a href="{{ route('feedbacks.show', $feedback) }}" class="btn btn-info">View</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection

create.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Create Feedback</h1>
<form action="{{ route('feedbacks.store') }}" method="POST">
@csrf
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}">{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Comments" class="form-label">Comments</label>
<textarea class="form-control" id="Comments" name="Comments" required></textarea>
</div>
<div class="mb-3">
<label for="Rating" class="form-label">Rating</label>
<input type="number" class="form-control" id="Rating" name="Rating" min="1" max="5" required>
</div>
<button type="submit" class="btn btn-success">Create Feedback</button>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

edit.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1>Edit Feedback</h1>
<form action="{{ route('feedbacks.update', $feedback) }}" method="POST">
@csrf
@method('PUT')
<div class="mb-3">
<label for="UserId" class="form-label">User </label>
<select class="form-select" id="UserId" name="UserId" required>
<option value="">Select User</option>
@foreach($users as $user)
<option value="{{ $user->UserId }}" {{ $user->UserId == $feedback->UserId ? 'selected' : '' }}>{{ $user->Username }}</option>
@endforeach
</select>
</div>
<div class="mb-3">
<label for="Comments" class="form-label">Comments</label>
<textarea class="form-control" id="Comments" name="Comments" required>{{ $feedback->Comments }}</textarea>
</div>
<div class="mb-3">
<label for="Rating" class="form-label">Rating</label>
<input type="number" class="form-control" id="Rating" name="Rating" value="{{ $feedback->Rating }}" min="1" max="5" required>
</div>
<button type="submit" class="btn btn-primary">Update Feedback</button>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</form>
</div>
@endsection

show.blade.php


@extends('layouts.app')
@section('content')
<div class="container">
<h1> Feedback Details</h1>
<div class="mb-3">
<strong>User:</strong> {{ $feedback->user->Username }}
</div>
<div class="mb-3">
<strong>Comments:</strong> {{ $feedback->Comments }}
</div>
<div class="mb-3">
<strong>Rating:</strong> {{ $feedback->Rating }}
</div>
<a href="{{ route('feedbacks.index') }}" class="btn btn-secondary">Back</a>
</div>
@endsection

Creating a Dashboard Page

Creating a dashboard page in a Laravel application involves aggregating data from various models and presenting it in a user-friendly format. Below, I'll provide an example of how to create a dashboard view that displays consolidated data related to your project, such as total users, total expenses, total incomes, total budgets, and any other relevant metrics.

Step 1: Create a Dashboard Route

First, you need to define a route for the dashboard in your web.php file:


// routes/web.php
use App\Http\Controllers\DashboardController;
Route::get('/dashboard', [DashboardController::class, 'index'])->name('dashboard');

Step 2: Create a Dashboard Controller

Next, create a controller for the dashboard:


php artisan make:controller DashboardController

Then, implement the index method to gather the necessary data:


// app/Http/Controllers/DashboardController.php
namespace App\Http\Controllers;
use App\Models\User;
use App\Models\Expense;
use App\Models\Income;
use App\Models\Budget;
use App\Models\Report;
use Illuminate\Http\Request;
class DashboardController extends Controller
{
public function index()
{
$totalUsers = User::count();
$totalExpenses = Expense::sum('Amount');
$totalIncomes = Income::sum('Amount');
$totalBudgets = Budget::sum('Amount');
$totalReports = Report::count();
return view('dashboard.index', compact('totalUsers', 'totalExpenses', 'totalIncomes', 'totalBudgets', 'totalReports'));
}
}

Step 3: Create the Dashboard View
Now, create the view file for the dashboard. Create a new directory called dashboard under resources/views, and then create an index.blade.php file:
mkdir resources/views/dashboard
touch resources/views/dashboard/index.blade.php
Here’s an example of what the index.blade.php file might look like:

@extends('layouts.app')
@section('content')
<div class="container">
<h1>Dashboard</h1>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-primary mb-3">
<div class="card-header">Total Users</div>
<div class="card-body">
<h5 class="card-title">{{ $totalUsers }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-header">Total Incomes</div>
<div class="card-body">
<h5 class="card-title">${{ number_format($totalIncomes, 2) }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-danger mb-3">
<div class="card-header">Total Expenses</div>
<div class="card-body">
<h5 class="card-title">${{ number_format($totalExpenses, 2) }}</h5>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card text-white bg-warning mb-3">
<div class="card-header">Total Budgets</div>
<div class="card-body">
<h5 class="card-title">${{ number_format($totalBudgets, 2) }}</h5>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card text-white bg-info mb-3">
<div class="card-header">Total Reports</div>
<div class="card-body">
<h5 class="card-title">{{ $totalReports }}</h5>
</div>
</div>
</div>
</div>
</div>
@endsection

Step 4: Update the Layout

Make sure your main layout file (e.g., layouts/app.blade.php) includes Bootstrap CSS and JS. If you haven't already set this up, you can include Bootstrap via CDN in the <head> section:


<!-- resources/views/layouts/app.blade.php -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
@yield('content')
</div </body>
</html>